home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / gnats301.lha / gnats-3.01 / config.sub < prev    next >
Text File  |  1993-04-14  |  16KB  |  801 lines

  1. #!/bin/sh
  2. # Configuration validation subroutine script, version 1.1.
  3. #   Copyright (C) 1991-1993 Free Software Foundation, Inc.
  4. # This file is (in principle) common to ALL GNU software.
  5. # The presence of a machine in this file suggests that SOME GNU software
  6. # can handle that machine.  It does not imply ALL GNU software can. 
  7.  
  8. #This file is free software; you can redistribute it and/or modify
  9. #it under the terms of the GNU General Public License as published by
  10. #the Free Software Foundation; either version 2 of the License, or
  11. #(at your option) any later version.
  12.  
  13. #This program is distributed in the hope that it will be useful,
  14. #but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. #GNU General Public License for more details.
  17.  
  18. #You should have received a copy of the GNU General Public License
  19. #along with this program; if not, write to the Free Software
  20. #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.  
  23. # Configuration subroutine to validate and canonicalize a configuration type.
  24. # Supply the specified configuration type as an argument.
  25. # If it is invalid, we print an error message on stderr and exit with code 1.
  26. # Otherwise, we print the canonical config type on stdout and succeed.
  27.  
  28. # This file is supposed to be the same for all GNU packages
  29. # and recognize all the CPU types, system types and aliases
  30. # that are meaningful with *any* GNU software.
  31. # Each package is responsible for reporting which valid configurations
  32. # it does not support.  The user should be able to distinguish
  33. # a failure to support a valid configuration from a meaningless
  34. # configuration.
  35.  
  36. # The goal of this file is to map all the various variations of a given
  37. # machine specification into a single specification in the form:
  38. #    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
  39. # It is wrong to echo any other type of specification.
  40.  
  41. if [ x$1 = x ]
  42. then
  43.     echo Configuration name missing. 1>&2
  44.     echo "Usage: $0 CPU-MFR-OPSYS" 1>&2
  45.     echo "or     $0 ALIAS" 1>&2
  46.     echo where ALIAS is a recognized configuration type. 1>&2
  47.     exit 1
  48. fi
  49.  
  50. # First pass through any local machine types.
  51. case $1 in
  52.     *local*)
  53.         echo $1
  54.         exit 0
  55.         ;;
  56.     *)
  57.     ;;
  58. esac
  59.  
  60. # Separate what the user gave into CPU-COMPANY and OS (if any).
  61. basic_machine=`echo $1 | sed 's/-[^-]*$//'`
  62. if [ $basic_machine != $1 ]
  63. then os=`echo $1 | sed 's/.*-/-/'`
  64. else os=; fi
  65.  
  66. ### Let's recognize common machines as not being operating systems so
  67. ### that things like config.sub decstation-3100 work.  We also
  68. ### recognize some manufacturers as not being operating systems, so we
  69. ### can provide default operating systems below.
  70. case $os in
  71.     -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
  72.     -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
  73.     -unicom* | -ibm* | -next* | -hp | -isi* | -apollo | -altos* | \
  74.     -convergent* | -ncr* | -news | -32* | -3600* | -3100* | \
  75.     -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
  76.     -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp)
  77.         os=
  78.         basic_machine=$1
  79.         ;;
  80.     -scout)                        # CYGNUS LOCAL
  81.         ;;
  82.     -wrs)                        # CYGNUS LOCAL
  83.         os=vxworks
  84.         basic_machine=$1
  85.         ;;
  86.     -sco3.2v[4-9]*)
  87.         # Don't forget version if it is 3.2v4 or newer.
  88.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  89.         ;;
  90.     -sco*)
  91.         os=-sco3.2v2
  92.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  93.         ;;
  94.     -isc)
  95.         os=-isc2.2
  96.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  97.         ;;
  98.     -isc*)
  99.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  100.         ;;
  101. esac
  102.  
  103. # Decode aliases for certain CPU-COMPANY combinations.
  104. case $basic_machine in
  105.     # Recognize the basic CPU types with without company name.
  106.     # Some are omitted here because they have special meanings below.
  107.     tahoe | i[34]86 | i860 | m68k | m68000 | m88k | ns32k | arm | pyramid \
  108.         | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \
  109.         | alpha | we32k | ns16k | clipper | sparclite \
  110.         | sparc | m680[01234]0 | m683?2 | v70 | h8500)# CYGNUS LOCAL
  111.         basic_machine=$basic_machine-unknown
  112.         ;;
  113.     # Recognize the basic CPU types with with company name.
  114.     vax-* | tahoe-* | i[34]86-* | i860-* | m68k-* | m68000-* | m88k-* \
  115.           | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \
  116.           | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
  117.           | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \
  118.           | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \
  119.           | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \
  120.           | m680[01234]0-* | m683?2-* | z8k-* | h8500-*)    # CYGNUS LOCAL
  121.         ;;
  122.     # Recognize the various machine names and aliases which stand
  123.     # for a CPU type and a company and sometimes even an OS.
  124.  
  125.     dpx20 | dpx20-*)                # CYGNUS LOCAL
  126.         basic_machine=rs6000-bull
  127.         os=-bosx
  128.         ;;
  129.     vaxv)
  130.         basic_machine=vax-dec
  131.         os=-sysv
  132.         ;;
  133.     vms)
  134.         basic_machine=vax-dec
  135.         os=-vms
  136.         ;;
  137.     i386mach)                    # CYGNUS LOCAL
  138.         basic_machine=i386-mach
  139.         os=-mach
  140.         ;;
  141. # I'm not sure what "Sysv32" means.  Should this be sysv3.2?
  142.     i[34]86v32)
  143.         basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
  144.         os=-sysv32
  145.         ;;
  146.     i[34]86v4*)
  147.         basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
  148.         os=-sysv4
  149.         ;;
  150.     i[34]86v)
  151.         basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
  152.         os=-sysv
  153.         ;;
  154.     i[34]86sol2)
  155.         basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
  156.         os=-solaris2
  157.         ;;
  158.     go32 | i386-go32)                # CYGNUS LOCAL
  159.         basic_machine=i386-unknown
  160.         os=-go32
  161.         ;;
  162.     i386-linux* | linux)                # CYGNUS LOCAL
  163.         basic_machine=i386-unknown
  164.         os=-linux
  165.         ;;
  166.     386bsd)                        # CYGNUS LOCAL
  167.         basic_machine=i386-unknown
  168.         os=-bsd
  169.         ;;
  170.     spur)
  171.         basic_machine=spur-unknown
  172.         ;;
  173.     alliant | fx80)
  174.         basic_machine=fx80-alliant
  175.         ;;
  176.     convex-c1)
  177.         basic_machine=c1-convex
  178.         os=-bsd
  179.         ;;
  180.     convex-c2)
  181.         basic_machine=c2-convex
  182.         os=-bsd
  183.         ;;
  184.     convex-c32)
  185.         basic_machine=c32-convex
  186.         os=-bsd
  187.         ;;
  188.     convex-c34)
  189.         basic_machine=c34-convex
  190.         os=-bsd
  191.         ;;
  192.     convex-c38)
  193.         basic_machine=c38-convex
  194.         os=-bsd
  195.         ;;
  196.     m88k-omron*)
  197.         basic_machine=m88k-omron
  198.         ;;
  199.     merlin)
  200.         basic_machine=ns32k-utek
  201.         os=-sysv
  202.         ;;
  203.     crds | unos)
  204.         basic_machine=m68k-crds
  205.         ;;
  206.     elxsi)
  207.         basic_machine=elxsi-elxsi
  208.         os=-bsd
  209.         ;;
  210.     encore | umax | mmax)
  211.         basic_machine=ns32k-encore
  212.         ;;
  213.     genix)
  214.         basic_machine=ns32k-ns
  215.         ;;
  216.     iris | iris4d | \
  217.     iris3 | iris4)                    # CYGNUS LOCAL
  218.         basic_machine=mips-sgi
  219.         case $os in
  220.             -irix*)
  221.             ;;
  222.             *)
  223.             os=-irix4
  224.             ;;
  225.         esac
  226.         ;;
  227.     news | news700 | news800 | news900)
  228.         basic_machine=m68k-sony
  229.         os=-newsos
  230.         ;;
  231.     3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
  232.         basic_machine=m68000-att
  233.         ;;
  234.     3b*)
  235.         basic_machine=we32k-att
  236.         ;;
  237.     delta | 3300 | motorola-3300 | motorola-delta \
  238.           | 3300-motorola | delta-motorola)
  239.         basic_machine=m68k-motorola
  240.         ;;
  241.     balance)
  242.         basic_machine=ns32k-sequent
  243.         os=-dynix
  244.         ;;
  245.         pc532)
  246.         basic_machine=ns32k-pc532
  247.         ;;
  248.     symmetry)
  249.         basic_machine=i386-sequent
  250.         os=-dynix
  251.         ;;
  252.     sun2)
  253.         basic_machine=m68000-sun
  254.         ;;
  255.     sun2os3)
  256.         basic_machine=m68000-sun
  257.         os=-sunos3
  258.         ;;
  259.     sun2os4)
  260.         basic_machine=m68000-sun
  261.         os=-sunos4
  262.         ;;
  263.     sun3os3)
  264.         basic_machine=m68k-sun
  265.         os=-sunos3
  266.         ;;
  267.     sun3os4)
  268.         basic_machine=m68k-sun
  269.         os=-sunos4
  270.         ;;
  271.     sun4os3)
  272.         basic_machine=sparc-sun
  273.         os=-sunos3
  274.         ;;
  275.     sun4os4)
  276.         basic_machine=sparc-sun
  277.         os=-sunos4
  278.         ;;
  279.     sun4sol2)                    # CYGNUS LOCAL
  280.         basic_machine=sparc-sun
  281.         os=-solaris2
  282.         ;;
  283.     z8ksim)                        # CYGNUS LOCAL
  284.         basic_machine=z8k-zilog
  285.         os=-sim
  286.         ;;
  287.     z8k)                        # CYGNUS LOCAL
  288.         basic_machine=z8k-zilog
  289.         ;;
  290.     sun3)
  291.         basic_machine=m68k-sun
  292.         ;;
  293.     sun4)
  294.         basic_machine=sparc-sun
  295.         ;;
  296.     msdos)                        # CYGNUS LOCAL
  297.         basic_machine=i386-unknown    
  298.         os=-msdos
  299.         ;;
  300.     pbd)
  301.         basic_machine=sparc-tti
  302.         ;;
  303.     pbb)
  304.         basic_machine=m68k-tti
  305.         ;;
  306.     sun386 | sun386i | roadrunner)
  307.         basic_machine=i386-sun
  308.         ;;
  309.     ps2)
  310.         basic_machine=i386-ibm
  311.         ;;
  312.     fx2800)
  313.         basic_machine=i860-alliant
  314.         ;;
  315.     next)
  316.         basic_machine=m68k-next
  317.         os=-bsd
  318.         ;;
  319.     amiga)
  320.         basic_machine=m68k-cbm
  321.         ;;
  322.     amigados)
  323.         basic_machine=m68k-cbm
  324.         os=-amigados
  325.         ;;
  326.     amigaunix | amix)
  327.         basic_machine=m68k-cbm
  328.         os=-sysv4
  329.         ;;
  330.     hp9k3[2-9][0-9])
  331.         basic_machine=m68k-hp
  332.         ;;
  333.     hp9k31[0-9] | hp9k2[0-9][0-9])
  334.         basic_machine=m68000-hp
  335.         ;;
  336.     hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7)
  337.         basic_machine=hppa1.1-hp
  338.         ;;
  339.     hp9k8[0-9][0-9] | hp8[0-9][0-9])
  340.         basic_machine=hppa1.0-hp
  341.         ;;
  342.     isi68 | isi)
  343.         basic_machine=m68k-isi
  344.         os=-sysv
  345.         ;;
  346.     apollo68)
  347.         basic_machine=m68k-apollo
  348.         os=-sysv
  349.         ;;
  350.     apollo68bsd)                    # CYGNUS LOCAL
  351.         basic_machine=m68k-apollo
  352.         os=-bsd
  353.         ;;
  354.     altos | altos3068)
  355.         basic_machine=m68k-altos
  356.         ;;
  357.     miniframe)
  358.         basic_machine=m68000-convergent
  359.         ;;
  360.     tower | tower-32)
  361.         basic_machine=m68k-ncr
  362.         ;;
  363.     news-3600 | risc-news)
  364.         basic_machine=mips-sony
  365.         os=-newsos
  366.         ;;
  367.     st2000)                        # CYGNUS LOCAL
  368.         basic_machine=m68k-tandem
  369.         ;;
  370.     decstation | decstation-3100 | pmax | pmin | dec3100 | decstatn)
  371.         basic_machine=mips-dec
  372.         ;;
  373.     magnum | m3230)
  374.         basic_machine=mips-mips
  375.         os=-sysv
  376.         ;;
  377.     gmicro)
  378.         basic_machine=tron-gmicro
  379.         os=-sysv
  380.         ;;
  381.     rtpc | rtpc-*)
  382.         basic_machine=romp-ibm
  383.         ;;
  384.     am29k)
  385.         basic_machine=a29k-none
  386.         os=-bsd
  387.         ;;
  388.     amdahl)
  389.         basic_machine=580-amdahl
  390.         os=-sysv
  391.         ;;
  392.     stratus)                    # CYGNUS LOCAL
  393.         basic_machine=i860-stratus
  394.         os=-sysv4
  395.         ;;
  396.     cray | ymp)
  397.         basic_machine=ymp-cray
  398.         os=-unicos
  399.         ;;
  400.     cray2)
  401.         basic_machine=cray2-cray
  402.         os=-unicos
  403.         ;;
  404.     xmp)
  405.         basic_machine=xmp-cray
  406.         os=-unicos
  407.         ;;
  408.     delta88)
  409.         basic_machine=m88k-motorola
  410.         os=-sysv3
  411.         ;;
  412.     dpx2)
  413.         basic_machine=m68k-bull
  414.         os=-sysv
  415.         ;;
  416.     ebmon29k)
  417.         basic_machine=a29k-amd
  418.         os=-ebmon
  419.         ;;
  420.     h8300hms)                    # CYGNUS LOCAL
  421.         basic_machine=h8300-hitachi
  422.         os=-hms
  423.         ;;
  424.     h8500hms)                    # CYGNUS LOCAL
  425.         basic_machine=h8500-hitachi
  426.         os=-hms
  427.         ;;
  428.     h8300xray)                    # CYGNUS LOCAL
  429.         basic_machine=h8300-hitachi
  430.         os=-xray
  431.         ;;
  432.     h8300hds)
  433.         basic_machine=h8300-hitachi
  434.         os=-hds
  435.         ;;
  436.     udi29k)                        # CYGNUS LOCAL
  437.         basic_machine=a29k-amd
  438.         os=-udi
  439.         ;;
  440.     a29khif)                    # CYGNUS LOCAL
  441.         basic_machine=a29k-amd
  442.         os=-udi
  443.         ;;
  444.     sa29200)                    # CYGNUS LOCAL
  445.         basic_machine=a29k-amd
  446.         os=-udi
  447.         ;;
  448.     harris)
  449.         basic_machine=m88k-harris
  450.         os=-sysv3
  451.         ;;
  452.     hp300bsd)
  453.         basic_machine=m68k-hp
  454.         os=-bsd
  455.         ;;
  456.     hp300hpux)
  457.         basic_machine=m68k-hp
  458.         os=-hpux
  459.         ;;
  460.     hp9k2[0-9][0-9] | hp9k31[0-9])
  461.         basic_machine=m68000-hp
  462.         os=-hpux
  463.         ;;
  464.     hp9k3[2-9][0-9])
  465.         basic_machine=m68k-hp
  466.         os=-hpux
  467.         ;;
  468.     ncr3000)
  469.         basic_machine=i486-ncr
  470.         os=-sysv4
  471.         ;;
  472.     necv70)                        # CYGNUS LOCAL
  473.         basic_machine=v70-nec
  474.         os=-sysv
  475.         ;;
  476.     news1000)
  477.         basic_machine=m68030-sony
  478.         os=-newsos
  479.         ;;
  480.     nindy960)
  481.         basic_machine=i960-intel
  482.         os=-nindy
  483.         ;;
  484.     pn)
  485.         basic_machine=pn-gould
  486.         ;;
  487.     np1)
  488.         basic_machine=np1-gould
  489.         ;;
  490.     ultra3)
  491.         basic_machine=a29k-nyu
  492.         os=-sym1
  493.         ;;
  494.     vxworks960)
  495.         basic_machine=i960-wrs
  496.         os=-vxworks
  497.         ;;
  498.     vxworks68)
  499.         basic_machine=m68k-wrs
  500.         os=-vxworks
  501.         ;;
  502.     es1800 | OSE68k | ose68k | ose | OSE)        # CYGNUS LOCAL
  503.         basic_machine=m68k-ericsson
  504.         os=-ose
  505.         ;;
  506.     OSE68000 | ose68000)                # CYGNUS LOCAL
  507.         basic_machine=m68000-ericsson
  508.         os=-ose
  509.         ;;
  510.     os68k)                        # CYGNUS LOCAL
  511.         basic_machine=m68k-none
  512.         os=-os68k
  513.         ;;
  514.     sparclite-wrs)                    # CYGNUS LOCAL
  515.         basic_machine=sparclite-wrs
  516.         os=-vxworks
  517.         ;;
  518.     sparcfrw)                    # CYGNUS LOCAL
  519.         basic_machine=sparcfrw-sun
  520.         os=-sunos4
  521.         ;;
  522.     sparcfrwcompat)                    # CYGNUS LOCAL
  523.         basic_machine=sparcfrwcompat-sun
  524.         os=-sunos4
  525.         ;;
  526.     sparclitefrw)                    # CYGNUS LOCAL
  527.         basic_machine=sparclitefrw-fujitsu
  528.         os=-none
  529.         ;;
  530.     sparclitefrwcompat)                # CYGNUS LOCAL
  531.         basic_machine=sparclitefrwcompat-fujitsu
  532.         os=-none
  533.         ;;
  534.     adobe68k)                    # CYGNUS LOCAL
  535.         basic_machine=m68010-adobe
  536.         os=-scout
  537.         ;;
  538.  
  539.         xps | xps100)
  540.         basic_machine=xps100-honeywell
  541.         ;;
  542.     none)
  543.         basic_machine=none-none
  544.         os=-none
  545.         ;;
  546.  
  547. # Here we handle the default manufacturer of certain CPU types.  It is in
  548. # some cases the only manufacturer, in others, it is the most popular.
  549.     mips)
  550.         basic_machine=mips-mips
  551.         ;;
  552.     romp)
  553.         basic_machine=romp-ibm
  554.         ;;
  555.     rs6000)
  556.         basic_machine=rs6000-ibm
  557.         ;;
  558.     vax)
  559.         basic_machine=vax-dec
  560.         ;;
  561.     we32k)
  562.         basic_machine=we32k-att
  563.         ;;
  564.     sparc)
  565.         basic_machine=sparc-sun
  566.         ;;
  567.         cydra)
  568.         basic_machine=cydra-cydrome
  569.         ;;
  570.     orion)
  571.         basic_machine=orion-highlevel
  572.         ;;
  573.     orion105)
  574.         basic_machine=clipper-highlevel
  575.         ;;
  576.     *)
  577.         echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
  578.         exit 1
  579.         ;;
  580. esac
  581.  
  582. # Here we canonicalize certain aliases for manufacturers.
  583. case $basic_machine in
  584.     *-digital*)
  585.         basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
  586.         ;;
  587.     *-commodore*)
  588.         basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
  589.         ;;
  590.     *)
  591.         ;;
  592. esac
  593.  
  594. # Decode manufacturer-specific aliases for certain operating systems.
  595.  
  596. if [ "$os" ]
  597. then
  598. case $os in
  599.     # -solaris* is a basic system type, with this one exception.
  600.     -solaris1 | -solaris1.*)
  601.         os=`echo $os | sed -e 's|solaris1|sunos4|'`
  602.         ;;
  603.     # First accept the basic system types.
  604.     # The portable systems comes first.
  605.     # Each alternative must end in a *, to match a version number.
  606.     -bsd* | -sysv* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
  607.           | -vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]* | -hpux* \
  608.           | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
  609.           | -amigados* | -msdos* | -newsos* | -unicos* | -aos* \
  610.           | -nindy* | -vxworks* | -ebmon* | -hds*  \
  611.           | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \
  612.           | -go32 | -sim | -es1800* | -udi | -hms* | -xray \
  613.           | -os68k* | -none* | -v88r* | -aout | -coff | -elf | -bosx* \
  614.           | -abug | -ecoff)
  615.                 # The last three lines above are CYGNUS LOCAL
  616.     ;;
  617.     -sunos5*)
  618.         os=`echo $os | sed -e 's|sunos5|solaris2|'`
  619.         ;;
  620.     -sunos6*)
  621.         os=`echo $os | sed -e 's|sunos6|solaris3|'`
  622.         ;;
  623.     -osfrose*)
  624.         os=-osfrose
  625.         ;;
  626.     -osf*)
  627.         os=-osf
  628.         ;;
  629.     -utek*)
  630.         os=-bsd
  631.         ;;
  632.     -dynix*)
  633.         os=-bsd
  634.         ;;
  635.     -acis*)
  636.         os=-aos
  637.         ;;
  638.     -386bsd)                    # CYGNUS LOCAL
  639.         os=-bsd
  640.         ;;
  641.     -ctix* | -uts*)
  642.         os=-sysv
  643.         ;;
  644.     -triton*)
  645.         os=-sysv3
  646.         ;;
  647.     -oss*)
  648.         os=-sysv3
  649.         ;;
  650.     -svr4)
  651.         os=-sysv4
  652.         ;;
  653.     -svr3)
  654.         os=-sysv3
  655.         ;;
  656.     -ose*)                        # CYGNUS LOCAL
  657.         os=-ose
  658.         ;;
  659.     -es1800*)                    # CYGNUS LOCAL
  660.         os=-ose
  661.         ;;
  662.     -xenix)
  663.         os=-xenix
  664.         ;;
  665.     -none)
  666.         ;;
  667.     *)
  668.         # Get rid of the `-' at the beginning of $os.
  669.         os=`echo $1 | sed 's/[^-]*-//'`
  670.         echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
  671.         exit 1
  672.         ;;
  673. esac
  674. else
  675.  
  676. # Here we handle the default operating systems that come with various machines.
  677. # The value should be what the vendor currently ships out the door with their
  678. # machine or put another way, the most popular os provided with the machine.
  679.  
  680. # Note that if you're going to try to match "-MANUFACTURER" here (say,
  681. # "-sun"), then you have to tell the case statement up towards the top
  682. # that MANUFACTURER isn't an operating system.  Otherwise, code above
  683. # will signal an error saying that MANUFACTURER isn't an operating
  684. # system, and we'll never get to this point.
  685.  
  686. case $basic_machine in
  687.     *-dec | vax-*)
  688.         os=-ultrix4.2
  689.         ;;
  690.     i386-sun)
  691.         os=-sunos4.0.2
  692.         ;;
  693.     m68000-sun)
  694.         os=-sunos3
  695.         # This also exists in the configure program, but was not the
  696.         # default.
  697.         # os=-sunos4
  698.         ;;
  699.     *-tti)    # must be before sparc entry or we get the wrong os.
  700.         os=-sysv3
  701.         ;;
  702.     sparc-* | *-sun)
  703.         os=-sunos4.1.1
  704.         ;;
  705.     *-ibm)
  706.         os=-aix
  707.         ;;
  708.     *-hp)
  709.         os=-hpux
  710.         ;;
  711.     i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
  712.         os=-sysv
  713.         ;;
  714.     *-cbm)
  715.         os=-amigados
  716.         ;;
  717.     *-dg)
  718.         os=-dgux
  719.         ;;
  720.     *-dolphin)
  721.         os=-sysv3
  722.         ;;
  723.     m88k-omron*)
  724.         os=-luna
  725.         ;;
  726.     *-sequent)
  727.         os=-bsd
  728.         ;;
  729.     *-crds)
  730.         os=-unos
  731.         ;;
  732.     *-ns)
  733.         os=-genix
  734.         ;;
  735.     i[34]86-*)
  736.         os=-sco3.2v2
  737.         ;;
  738.         *-gould)
  739.         os=-sysv
  740.         ;;
  741.         *-highlevel)
  742.         os=-bsd
  743.         ;;
  744.     *-encore)
  745.         os=-bsd
  746.         ;;
  747.         *-sgi)
  748.         os=-irix
  749.         ;;
  750.     *-masscomp)
  751.         os=-rtu
  752.         ;;
  753.     *)
  754.         os=-none
  755.         ;;
  756. esac
  757. fi
  758.  
  759. # Here we handle the case where we know the os, and the CPU type, but not the
  760. # manufacturer.  We pick the logical manufacturer.
  761. vendor=unknown
  762. case $basic_machine in
  763.     *-unknown)
  764.         case $os in
  765.             -sunos*)
  766.                 vendor=sun
  767.                 ;;
  768.             -bosx*)            # CYGNUS LOCAL
  769.                 vendor=bull
  770.                 ;;
  771.             -aix*)
  772.                 vendor=ibm
  773.                 ;;
  774.             -hpux*)
  775.                 vendor=hp
  776.                 ;;
  777.             -unos*)
  778.                 vendor=crds
  779.                 ;;
  780.             -dgux*)
  781.                 vendor=dg
  782.                 ;;
  783.             -luna*)
  784.                 vendor=omron
  785.                 ;;
  786.             -genix*)
  787.                 vendor=ns
  788.                 ;;
  789.             -vxworks*)            # CYGNUS LOCAL
  790.                 vendor=wrs
  791.                 ;;
  792.             -hms*)                # CYGNUS LOCAL
  793.                 vendor=hitachi
  794.                 ;;
  795.         esac
  796.         basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
  797.         ;;
  798. esac
  799.  
  800. echo $basic_machine$os
  801.